home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 751 b | 39 lines | [TEXT/MPS ] |
- ;
- ; Generic LaserWriter.a
- ;
- ; this file contains a jump table for the generic LaserWriter driver
- ;
- ; © 1992-1994 Apple Computer Inc.
- ;
- ;
-
- STRING ASIS
- CASE OBJ
-
-
- DriverJumpTable PROC EXPORT
-
- EXPORT referenceCount
-
- referenceCount DC.L 0
-
- IMPORT DriverPostScriptDoPageSetup
- JMP DriverPostScriptDoPageSetup
-
- IMPORT DriverOpenConnection
- JMP DriverOpenConnection
-
- IMPORT DriverCloseConnection
- JMP DriverCloseConnection
-
- IMPORT DriverInitialize
- JMP DriverInitialize
-
- IMPORT DriverShutDown
- JMP DriverShutDown
-
- IMPORT DriverDumpBuffer
- JMP DriverDumpBuffer
-
- END
-